home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 January - Disc 2 / Macworld (1999-01) (Disk 2).dmg / Serious Demos / Symbolic Composer 4.2 / Environment / Projects / Questions & Answers / Q&A Programming Music / How to set tick base? < prev    next >
Text File  |  1998-10-26  |  812b  |  24 lines

  1. HOW TO SET TICKBASE
  2.  
  3. >        When working with Ticks in terms of Symbol and Zone lengths, are you
  4. >confined to using 192 ticks per quarter note, or can you specify the number
  5. >of clicks per quarter note.  Performer, Vision and others as I am sure you
  6. >know use 480 ticks per quarter note, for instance.  Logic uses 960.  How
  7. >would I specify 480 ticks?
  8.  
  9. set-whole-note does the trick. The default value for a whole not is 1920
  10. ticks:
  11.  
  12. (get-tick '1/1)
  13. --> 1920
  14.  
  15. For 1/4 note the tick amount is 480 so you don't have to specify it.
  16.  
  17. If you want to specify another tick value copy the following into
  18. a new file and save it into environment/extensions folder.
  19.  
  20. (set-whole-note 960)
  21.  
  22. Sequencers convert tick values to their internal values when importing.
  23. Most cases you do not need to touch the tick value at all. 
  24.